Blog Home
About
Archive
Repository
强化学习
中文
Demo
Video
Featured
What I did
日本語
音声処理
言語解析
English
Tensorflow
Cuda
Android
Electron
WebApp
C++
Node.js
Python
Gatsby
import sounddevice as sd def Play(y, sr=16000): sd.play(y, sr) sd.wait()
import sounddevice as sd import librosa def Play(path, SR=16000): y, sr = librosa.load(path, sr=SR, duration=100000) sd.play(y, sr) sd.wait()
If you like it, share it!